home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / BETTERIN.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  806b  |  34 lines

  1.                              /* Chapter 9 - Program 3 - BETTERIN.C */
  2. #include "stdio.h"
  3. #include "conio.h"
  4. #define CR 13       /* this defines CR to be 13 */
  5. #define LF 10       /* this defines LF to be 10 */
  6.  
  7. void main()
  8. {
  9. char c;
  10.  
  11.    printf("Input any characters, hit X to stop.\n");
  12.  
  13.    do {
  14.       c = _getch();                  /* get a character            */
  15.       putchar(c);                    /* display the hit key        */
  16.       if (c == CR) putchar(LF);      /* if it is a carriage return */
  17.                                      /*  put out a linefeed too    */
  18.    } while (c != 'X');
  19.  
  20.    printf("\nEnd of program.\n");
  21. }
  22.  
  23.  
  24.  
  25. /* Result of execution
  26.  
  27. Input any characters, hit X to stop.
  28.  
  29. (The output depends on what characters you enter.)
  30.  
  31. End of program.
  32.  
  33. */
  34.